home *** CD-ROM | disk | FTP | other *** search
- /*
- File: StatusWindow.h
-
- Copyright: © 1991-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Part of the AOCE Sample SMSAM Package. Consult the license
- which came with this software for your specific legal rights.
-
- */
-
-
-
- #ifndef __STATUSWINDOW__
- #define __STATUSWINDOW__ 1
-
- #ifndef __BLJSTANDARDINCLUDES__
- #include "BLJStandardIncludes.h"
- #endif
-
- #ifndef __DIALOGWINDOW__
- #include "DialogWindow.h"
- #endif
-
- /***********************************|****************************************/
-
- typedef unsigned long GetLoadIndicatorFunc ();
-
- /***********************************|****************************************/
-
- class TStatusWindow : public TDialogWindow {
-
- public: TStatusWindow ( short dialogID, short stringsSTRPoundID, GetLoadIndicatorFunc* f );
- virtual ~TStatusWindow ( );
-
- virtual void HandleButtonPress ( short whichButton ) ;
-
- virtual Boolean UpdateLoadIndicator ( );
-
- virtual void DrawUserItem ( short whichItem );
-
- private:
- GetLoadIndicatorFunc* fGetLoadIndicatorValueFunc;
- };
-
- /***********************************|****************************************/
-
- #endif // __STATUSWINDOW__
-